/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --azul-claro: #dbe9fa;
    --azul-pastel: #B3D9FF;
    --azul-medio: #80BFFF;
    --azul-escuro: #4DA6FF;
    --azul-texto: #0066CC;
    --branco: #FFFFFF;
    --cinza-claro: #F5F5F5;
    --cinza-texto: #555555;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.4;
    color: #333;
    background-color: var(--azul-claro);
}

/* Estilos Gerais */
h1, h2, h3, h4 {
    color: var(--azul-texto);
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    background-color: var(--azul-medio);
    color: var(--branco);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.btn:hover {
    background-color: var(--azul-escuro);
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-secundario {
    background-color: transparent;
    border: 2px solid var(--azul-medio);
    color: var(--azul-texto);
    margin-left: 1rem;
}

.btn-secundario:hover {
    background-color: var(--azul-claro);
}

/* Header */
header {
    background-color: var(--azul-pastel);
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--azul-medio);
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid var(--branco);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.slogan {
    font-style: italic;
    color: var(--azul-texto);
}

/* Navegação */
nav {
    background-color: var(--azul-medio);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 5rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--branco);
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

nav a:hover {
    background-color: var(--azul-escuro);
}

/* Main Content */
main {
    padding: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

section {
    margin-bottom: 3rem;
    padding: 1rem;
    background-color: var(--branco);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Estilos de Projetos */
.projeto-destaque {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: var(--branco);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    border-left: 5px solid var(--azul-escuro);
}

.projeto-marca {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--azul-escuro);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projeto-tecnologia {
    display: inline-block;
    background-color: var(--azul-claro);
    color: var(--azul-texto);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.projeto-descricao {
    margin: 1.5rem 0;
    line-height: 1.7;
    color: var(--cinza-texto);
}

.projeto-status {
    font-weight: bold;
    color: var(--azul-escuro);
    margin: 0.5rem 0;
}

.projeto-techs {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.projeto-techs li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.projeto-techs li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--azul-escuro);
    font-weight: bold;
}

.projeto-imagem {
    position: relative;
}

.destaque-miniatura, .projeto-miniatura {
    height: 300px;
    background-color: var(--azul-pastel);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.projeto-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.projeto-card {
    background-color: var(--branco);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.projeto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.projeto-data {
    color: var(--azul-texto);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.projetos-lista {
    display: grid;
    gap: 1.5rem;
}

.projeto-item {
    padding: 1.5rem;
    border-bottom: 1px solid var(--azul-pastel);
    transition: all 0.3s;
}

.projeto-item:hover {
    background-color: var(--azul-claro);
    border-radius: 4px;
}

.projeto-meta {
    color: var(--azul-texto);
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

/* Estilos de Vídeos */
.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-player {
    background-color: var(--azul-pastel);
    border-radius: 8px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-descricao {
    margin: 1rem 0;
    line-height: 1.7;
    color: var(--cinza-texto);
}

.video-meta {
    color: var(--azul-texto);
    font-size: 0.9rem;
}

.video-carrossel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin: 2rem 0;
}

.carrossel-inner {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1rem;
    padding: 1rem;
}

.carrossel-item {
    min-width: calc(33.333% - 1rem);
    background-color: var(--branco);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    height: 150px;
    background-color: var(--azul-pastel);
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-weight: bold;
}

.video-duracao {
    color: var(--azul-texto);
    font-size: 0.8rem;
}

.carrossel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    color: var(--azul-texto);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

.carrossel-control:hover {
    background-color: var(--branco);
    transform: translateY(-50%) scale(1.1);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.video-card {
    background-color: var(--branco);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.video-card h3 {
    padding: 1rem;
    font-size: 1.1rem;
}

.video-card .video-meta {
    padding: 0 1rem 1rem;
}

/* Formulário de Contato */
.contact-form {
    display: grid;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid var(--azul-pastel);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--azul-escuro);
    box-shadow: 0 0 0 2px rgba(77, 166, 255, 0.3);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--azul-texto);
    color: var(--branco);
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Responsividade */
@media (max-width: 1024px) {
    .video-container {
        grid-template-columns: 1fr;
    }
    
    .carrossel-item {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .projeto-destaque {
        grid-template-columns: 1fr;
    }
    
    .projeto-info {
        order: 2;
    }
    
    .projeto-imagem {
        order: 1;
    }
    
    .destaque-miniatura, .projeto-miniatura {
        height: 200px;
    }
    
    .video-player {
        height: 300px;
    }
    
    .carrossel-item {
        min-width: calc(100% - 1rem);
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .projeto-links {
        flex-direction: column;
    }
    
    .btn-secundario {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    section {
        padding: 1.5rem;
    }
}
.carrossel-projetos, .carrossel-videos {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin: 2rem 0;
    padding: 1rem 0;
}

.carrossel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carrossel-item {
    min-width: 100%;
    padding: 1.5rem;
    background-color: var(--branco);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    margin: 0 0.5rem;
}

.carrossel-projetos .carrossel-item {
    text-align: center;
}

.projeto-miniatura, .video-thumbnail {
    height: 200px;
    background-color: var(--azul-pastel);
    border-radius: 8px;
    margin: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-weight: bold;
}

.carrossel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--azul-texto);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.carrossel-control:hover {
    background-color: var(--branco);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

.carrossel-indicators {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    gap: 0.5rem;
}

.carrossel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--azul-pastel);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carrossel-indicator.active {
    background-color: var(--azul-escuro);
    transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .carrossel-control {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .projeto-miniatura, .video-thumbnail {
        height: 150px;
    }
}
.contato-redes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.contato-item:hover {
    background-color: #e0e0e0;
}

.contato-icone {
    font-size: 1.2em;
}

.contato-link {
    color: #333;
    text-decoration: none;
    font-size: 1em;
}

.contato-link:hover {
    text-decoration: underline;
}